home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.20021006-20030409 / 000194_fdc@columbia.edu_Mon Dec 23 11:42:10 EST 2002.msg < prev    next >
Text File  |  2003-04-08  |  3KB  |  51 lines

  1. Article: 13980 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: help needed in file transfer (urgent please)
  6. Date: 23 Dec 2002 11:41:55 -0500
  7. Organization: Columbia University
  8. Lines: 34
  9. Message-ID: <au7ecj$1kb$1@watsol.cc.columbia.edu>
  10. References: <cfdef9ee.0212230813.54f8ac35@posting.google.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1040661717 17210 128.59.39.139 (23 Dec 2002 16:41:57 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 23 Dec 2002 16:41:57 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13980
  16.  
  17. In article <cfdef9ee.0212230813.54f8ac35@posting.google.com>,
  18. yoyo <myahya@yahoo.com> wrote:
  19. : hi every one , i was wondering if any one can help me out with my
  20. : problem.  i want to transfer some files back and forth from linux box to
  21. : windows pc.  c-kermit and kermit 95 are running on these machines .  now
  22. : i have managed to automate the process but some times while linux is
  23. : uploading the file gives up sayinf too many retries , or after almost
  24. : transferring 100% of a file it says connection lost.  i am using mmove
  25. : command to download files from win to linux and retrieve command to
  26. : upload files from linux to win .
  27. :
  28. Sometimes connections go bad; that's why we use file transfer protocols
  29. like Kermit.  If a packet is not received successfully, it is sent again.
  30. If it still is not received successfully, it is sent yet again.  And so
  31. on, up to a limit (which you can specify with SET RETRY-LIMIT), after
  32. which it gives up, since the connection appears to be unusable.
  33.  
  34. You can adapt Kermit to the bad connection, or you can fix the connection
  35. so it won't be bad.  But you didn't tell us what kind of connection it is
  36. so it's difficult to offer suggestions.  "Using C-Kermit" includes several
  37. chapters on setting up connections and troublesheeting file transfer
  38. problems.  For hints about sending problem reports, see:
  39.  
  40.   http://www.columbia.edu/kermit/support.html#hints
  41.  
  42. In the meantime, if a binary-mode transfer fails before it is complete,
  43. you can use RESEND or REGET to have it continue where it left off.  Since
  44. you are building an automated file transfer procedure, you might want to
  45. take a look at the "deliver" script in our library:
  46.  
  47.   http://www.columbia.edu/kermit/ckscripts.html             Script library
  48.   ftp://kermit.columbia.edu/kermit/scripts/ckermit/deliver  Deliver script
  49.  
  50. - Frank
  51.